home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / FTP32._M_ < prev    next >
Text File  |  1997-07-26  |  1KB  |  33 lines

  1. # Microsoft makefile for FTP [Win32]
  2. #
  3. # To use: "NMAKE FTP32._M_"
  4. #
  5.  
  6. CFLAGS   = -c -DWIN32 -DSTRICT -G3 -Ow -W3 -Zp -Tp
  7. GUIFLAGS = -SUBSYSTEM:windows
  8. GUILIBS  = -DEFAULTLIB:user32.lib gdi32.lib winmm.lib comdlg32.lib comctl32.lib wil32.lib
  9.  
  10. ftp.exe: ftp.obj ftp.res about.obj async.obj paint.obj str.obj readini.obj
  11.      link $(GUIFLAGS) -OUT:ftp.exe ftp.obj about.obj async.obj paint.obj readini.obj str.obj ftp.res $(GUILIBS)
  12.  
  13. ftp.obj: ftp.c wil.h
  14.      cl $(CFLAGS) ftp.c
  15.  
  16. about.obj: about.c about.h wil.h
  17.      cl $(CFLAGS) about.c
  18.  
  19. async.obj: async.c async.h wil.h
  20.      cl $(CFLAGS) async.c
  21.  
  22. paint.obj: paint.c paint.h wil.h
  23.      cl $(CFLAGS) paint.c
  24.  
  25. readini.obj: readini.c readini.h wil.h
  26.      cl $(CFLAGS) readini.c
  27.  
  28. str.obj: str.c str.h wil.h
  29.      cl $(CFLAGS) str.c
  30.  
  31. ftp.res: ftp.rc msc.ico wil.h message.h
  32.      rc -r -DWIN32 ftp.rc
  33.